[docs] Move documentation to inline comments: GtkVPaned
authorSteven Harms <sharms@ubuntu.com>
Thu, 4 Mar 2010 00:51:16 +0000 (19:51 -0500)
committerJavier Jardón <jjardon@gnome.org>
Sun, 18 Apr 2010 00:57:30 +0000 (02:57 +0200)
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=611634

Signed-off-by: Javier Jardón <jjardon@gnome.org>
docs/reference/gtk/tmpl/gtkvpaned.sgml [deleted file]
gtk/gtkvpaned.c

diff --git a/docs/reference/gtk/tmpl/gtkvpaned.sgml b/docs/reference/gtk/tmpl/gtkvpaned.sgml
deleted file mode 100644 (file)
index b894b6d..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-GtkVPaned
-
-<!-- ##### SECTION Short_Description ##### -->
-A container with two panes arranged vertically
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-The VPaned widget is a container widget with two
-children arranged vertically. The division between
-the two panes is adjustable by the user by dragging
-a handle. See #GtkPaned for details.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### STRUCT GtkVPaned ##### -->
-<para>
-</para>
-
-
-<!-- ##### FUNCTION gtk_vpaned_new ##### -->
-<para>
-Create a new #GtkVPaned
-</para>
-
-@Returns: the new #GtkVPaned
-
-
index 42bba68ede1ca40058ce825267e0a914f99348ee..7b9e38f16a209c2f718fad572712efa02a070f53 100644 (file)
 #include "gtkvpaned.h"
 #include "gtkalias.h"
 
+/**
+ * SECTION:gtkvpaned
+ * @Short_description: A container with two panes arranged vertically
+ * @Title: GtkVPaned
+ *
+ * The VPaned widget is a container widget with two
+ * children arranged vertically. The division between
+ * the two panes is adjustable by the user by dragging
+ * a handle. See #GtkPaned for details.
+ */
+
 G_DEFINE_TYPE (GtkVPaned, gtk_vpaned, GTK_TYPE_PANED)
 
 static void
@@ -44,6 +55,13 @@ gtk_vpaned_init (GtkVPaned *vpaned)
                                   GTK_ORIENTATION_VERTICAL);
 }
 
+/**
+ * gtk_vpaned_new:
+ *
+ * Create a new #GtkVPaned
+ *
+ * Returns: the new #GtkVPaned
+ */
 GtkWidget *
 gtk_vpaned_new (void)
 {